home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000040_svd_box_5@hotpop.com_Wed Apr 24 11:15:26 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  49 lines

  1. Article: 13331 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!bloom-beacon.mit.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: svd_box_5@hotpop.com (Scott Davis)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: What is wrong with this macro - THANKS
  6. Date: 24 Apr 2002 08:06:38 -0700
  7. Organization: http://groups.google.com/
  8. Lines: 30
  9. Message-ID: <97b4e474.0204240706.7d0a4fde@posting.google.com>
  10. References: <97b4e474.0204231005.3bf7bc3e@posting.google.com> <aa48bl$rmu$1@watsol.cc.columbia.edu>
  11. NNTP-Posting-Host: 12.29.89.6
  12. Content-Type: text/plain; charset=ISO-8859-1
  13. Content-Transfer-Encoding: 8bit
  14. X-Trace: posting.google.com 1019660799 2053 127.0.0.1 (24 Apr 2002 15:06:39 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: 24 Apr 2002 15:06:39 GMT
  17. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13331
  18.  
  19. Yeah - I took another option and changed it to output {\13} - that worked too.
  20. Thanks.
  21. I really shouldn't have coded it that way in the first place.
  22.  
  23. fdc@columbia.edu (Frank da Cruz) wrote in message news:<aa48bl$rmu$1@watsol.cc.columbia.edu>...
  24. > In article <97b4e474.0204231005.3bf7bc3e@posting.google.com>,
  25. > Scott Davis <svd_box_5@hotpop.com> wrote:
  26. > : This macro worked fine under kermit 7, but under 8 it gives the message:
  27. > : ?Unbalanced braces
  28. > : 
  29. > : define get-a-3com-modem -
  30. > : {
  31. > :         ....
  32. > :         output \{13}  <-- this is the culprit
  33. > :         ....
  34. > : }
  35. > :
  36. > It's a bug, fixed in the current sources:
  37. >   http://www.columbia.edu/kermit/ckdaily.html
  38. > Workaround:
  39. >           output \13
  40. > or more simply:
  41. >           lineout
  42. > - Frank
  43.